home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJLSR111.ZIP / libsrc / c / dos / fnmerge.c < prev    next >
C/C++ Source or Header  |  1993-10-04  |  370b  |  15 lines

  1. /*   fnmerge.c replacement for Borland version pjbk */
  2.  
  3. #include <dir.h>
  4. #include <string.h>
  5.  
  6. void fnmerge (char *path, const char *drive, const char *dir,
  7.           const char *name, const char *ext)
  8. {
  9.   *path = '\0';
  10.   if ( drive) strcat ( path, drive);
  11.   if ( dir) strcat ( path, dir);
  12.   if ( name) strcat ( path, name);
  13.   if ( ext) strcat ( path, ext);
  14. }
  15.